-
Notifications
You must be signed in to change notification settings - Fork 32
/
TreeMap源码详解(下).md
831 lines (695 loc) · 22.9 KB
/
TreeMap源码详解(下).md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
## 查找元素
- 单个元素
```java
public V get(Object key) {
// 获得 key 对应的 Entry 节点
Entry<K,V> p = getEntry(key);
// 返回 value 值
return (p == null ? null : p.value);
}
final Entry<K,V> getEntry(Object key) { // 不使用 comparator 查找
// Offload comparator-based version for sake of performance
// 如果自定义了 comparator 比较器,则基于 comparator 比较来查找
if (comparator != null)
return getEntryUsingComparator(key);
// 如果 key 为空,抛出异常
if (key == null)
throw new NullPointerException();
@SuppressWarnings("unchecked")
Comparable<? super K> k = (Comparable<? super K>) key;
// 遍历红黑树
Entry<K,V> p = root;
while (p != null) {
// 比较值
int cmp = k.compareTo(p.key);
// 如果 key 小于当前节点,则遍历左子树
if (cmp < 0)
p = p.left;
// 如果 key 大于当前节点,则遍历右子树
else if (cmp > 0)
p = p.right;
// 如果 key 相等,则返回该节点
else
return p;
}
// 查找不到,返回 null
return null;
}
final Entry<K,V> getEntryUsingComparator(Object key) { // 使用 comparator 查找
@SuppressWarnings("unchecked")
K k = (K) key;
Comparator<? super K> cpr = comparator;
if (cpr != null) {
// 遍历红黑树
Entry<K,V> p = root;
while (p != null) {
// 比较值
int cmp = cpr.compare(k, p.key);
// 如果 key 小于当前节点,则遍历左子树
if (cmp < 0)
p = p.left;
// 如果 key 大于当前节点,则遍历右子树
else if (cmp > 0)
p = p.right;
// 如果 key 相等,则返回该节点
else
return p;
}
}
// 查找不到,返回 null
return null;
}
```
- 查找接近的元素(在 NavigableMap 中,定义了四个查找接近元素的方法)
- `#ceilingEntry(K key)` 方法,大于等于 `key` 的节点
- `#higherEntry(K key)` 方法,大于 `key` 的节点
- `#floorEntry(K key)` 方法,小于等于 `key` 的节点
- `#lowerEntry(K key)` 方法,小于 `key` 的节点
大于等于
```java
public Map.Entry<K,V> ceilingEntry(K key) {
// <1> 调用 #getCeilingEntry(K key) 方法,查找满足大于等于 key 的 Entry 节点。
// <2> 调用 #exportEntry(TreeMap.Entry<K,V> e) 方法,创建不可变的 SimpleImmutableEntry 节点。这样,避免使用者直接修改节点,例如说修改 key 导致破坏红黑树。
return exportEntry(getCeilingEntry(key));
}
static <K,V> Map.Entry<K,V> exportEntry(TreeMap.Entry<K,V> e) {
return (e == null) ? null :
new AbstractMap.SimpleImmutableEntry<>(e);
}
final Entry<K,V> getCeilingEntry(K key) {
Entry<K,V> p = root;
// <3> 循环二叉查找遍历红黑树
while (p != null) {
// <3.1> 比较 key
int cmp = compare(key, p.key);
// <3.2> 当前节点比 key 大,则遍历左子树,这样缩小节点的值
if (cmp < 0) {
// <3.2.1> 如果有左子树,则遍历左子树
if (p.left != null)
p = p.left;
// <3.2.2.> 如果没有,则直接返回该节点
else
return p;
// <3.3> 当前节点比 key 小,则遍历右子树,这样放大节点的值
} else if (cmp > 0) {
// <3.3.1> 如果有右子树,则遍历右子树
if (p.right != null) {
p = p.right;
} else {
// <3.3.2> 找到当前的后继节点
Entry<K,V> parent = p.parent;
Entry<K,V> ch = p;
// 找到往 root 路径上的第一个右子节点
while (parent != null && ch == parent.right) {
ch = parent;
parent = parent.parent;
}
return parent;
}
// <3.4> 如果相等,则返回该节点即可
} else
return p;
}
// <3.5>
return null;
}
```
大于
```java
public Map.Entry<K,V> higherEntry(K key) {
return exportEntry(getHigherEntry(key));
}
final Entry<K,V> getHigherEntry(K key) {
Entry<K,V> p = root;
// 循环二叉查找遍历红黑树
while (p != null) {
// 比较 key
int cmp = compare(key, p.key);
// 当前节点比 key 大,则遍历左子树,这样缩小节点的值
if (cmp < 0) {
// 如果有左子树,则遍历左子树
if (p.left != null)
p = p.left;
// 如果没有,则直接返回该节点
else
return p;
// 当前节点比 key 小,则遍历右子树,这样放大节点的值
} else {
// 如果有右子树,则遍历右子树
if (p.right != null) {
p = p.right;
} else {
// 找到当前的后继节点
Entry<K,V> parent = p.parent;
Entry<K,V> ch = p;
while (parent != null && ch == parent.right) {
ch = parent;
parent = parent.parent;
}
return parent;
}
}
// <X> 此处,相等的情况下,不返回
}
// 查找不到,返回 null
return null;
}
```
小于等于
```java
public Map.Entry<K,V> floorEntry(K key) {
return exportEntry(getFloorEntry(key));
}
final Entry<K,V> getFloorEntry(K key) {
Entry<K,V> p = root;
// 循环二叉查找遍历红黑树
while (p != null) {
// 比较 key
int cmp = compare(key, p.key);
if (cmp > 0) {
// 如果有右子树,则遍历右子树
if (p.right != null)
p = p.right;
// 如果没有,则直接返回该节点
else
return p;
// 当前节点比 key 小,则遍历右子树,这样放大节点的值
} else if (cmp < 0) {
// 如果有左子树,则遍历左子树
if (p.left != null) {
p = p.left;
} else {
// 找到当前节点的前继节点
Entry<K,V> parent = p.parent;
Entry<K,V> ch = p;
// 找到往 root 路径上的第一个左子节点
while (parent != null && ch == parent.left) {
ch = parent;
parent = parent.parent;
}
return parent;
}
// 如果相等,则返回该节点即可
} else
return p;
}
// 查找不到,返回 null
return null;
}
```
小于
```java
public Map.Entry<K,V> lowerEntry(K key) {
return exportEntry(getLowerEntry(key));
}
final Entry<K,V> getLowerEntry(K key) {
Entry<K,V> p = root;
// 循环二叉查找遍历红黑树
while (p != null) {
// 比较 key
int cmp = compare(key, p.key);
// 当前节点比 key 小,则遍历右子树,这样放大节点的值
if (cmp > 0) {
// 如果有右子树,则遍历右子树
if (p.right != null)
p = p.right;
// 如果没有,则直接返回该节点
else
return p;
// 当前节点比 key 大,则遍历左子树,这样缩小节点的值
} else {
// 如果有左子树,则遍历左子树
if (p.left != null) {
p = p.left;
} else {
// 找到当前节点的前继节点
Entry<K,V> parent = p.parent;
Entry<K,V> ch = p;
while (parent != null && ch == parent.left) {
ch = parent;
parent = parent.parent;
}
return parent;
}
}
// 此处,相等的情况下,不返回
}
// 查找不到,返回 null
return null;
}
```
- 不返回 Entry 节点,只返回符合条件的 key
```java
public K lowerKey(K key) {
return keyOrNull(getLowerEntry(key));
}
public K floorKey(K key) {
return keyOrNull(getFloorEntry(key));
}
public K ceilingKey(K key) {
return keyOrNull(getCeilingEntry(key));
}
public K higherKey(K key) {
return keyOrNull(getHigherEntry(key));
}
static <K,V> K keyOrNull(TreeMap.Entry<K,V> e) {
return (e == null) ? null : e.key;
}
```
- 获得首尾的元素
首(最左边节点)
```java
public Map.Entry<K,V> firstEntry() {
return exportEntry(getFirstEntry());
}
final Entry<K,V> getFirstEntry() {
Entry<K,V> p = root;
if (p != null)
// 循环,不断遍历到左子节点,直到没有左子节点
while (p.left != null)
p = p.left;
return p;
}
```
衍生方法
```java
public Map.Entry<K,V> pollFirstEntry() { // 获得并移除首个 Entry 节点
// 获得首个 Entry 节点
Entry<K,V> p = getFirstEntry();
Map.Entry<K,V> result = exportEntry(p);
// 如果存在,则进行删除。
if (p != null)
deleteEntry(p);
return result;
}
public K firstKey() {
return key(getFirstEntry());
}
static <K> K key(Entry<K,?> e) {
if (e == null) // 如果不存在 e 元素,则抛出 NoSuchElementException 异常
throw new NoSuchElementException();
return e.key;
}
```
尾(最右边节点)
```java
public Map.Entry<K,V> lastEntry() {
return exportEntry(getLastEntry());
}
final Entry<K,V> getLastEntry() {
Entry<K,V> p = root;
if (p != null)
// 循环,不断遍历到右子节点,直到没有右子节点
while (p.right != null)
p = p.right;
return p;
}
```
衍生方法
```java
public Map.Entry<K,V> pollLastEntry() { // 获得并移除尾部 Entry 节点
// 获得尾部 Entry 节点
Entry<K,V> p = getLastEntry();
Map.Entry<K,V> result = exportEntry(p);
// 如果存在,则进行删除。
if (p != null)
deleteEntry(p);
return result;
}
public K lastKey() {
return key(getLastEntry());
}
```
## 迭代器
- 抽象父类:PrivateEntryIterator
```java
abstract class PrivateEntryIterator<T> implements Iterator<T> {
// 下一个节点
Entry<K,V> next;
// 最后返回的节点
Entry<K,V> lastReturned;
// 当前的修改次数
int expectedModCount;
PrivateEntryIterator(Entry<K,V> first) {
expectedModCount = modCount;
lastReturned = null;
next = first;
}
public final boolean hasNext() {
return next != null;
}
final Entry<K,V> nextEntry() { // 获得下一个 Entry 节点
// 记录当前节点
Entry<K,V> e = next;
// 如果没有下一个,抛出 NoSuchElementException 异常
if (e == null)
throw new NoSuchElementException();
// 如果发生了修改,抛出 ConcurrentModificationException 异常
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
// 获得 e 的后继节点,赋值给 next
next = successor(e);
// 记录最后返回的节点
lastReturned = e;
// 返回当前节点
return e;
}
final Entry<K,V> prevEntry() { // 获得前一个 Entry 节点
// 记录当前节点
Entry<K,V> e = next;
// 如果没有下一个,抛出 NoSuchElementException 异常
if (e == null)
throw new NoSuchElementException();
// 如果发生了修改,抛出 ConcurrentModificationException 异常
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
// 获得 e 的前继节点,赋值给 next
next = predecessor(e);
// 记录最后返回的节点
lastReturned = e;
// 返回当前节点
return e;
}
public void remove() { // 删除节点
// 如果当前返回的节点不存在,则抛出 IllegalStateException 异常
if (lastReturned == null)
throw new IllegalStateException();
// 如果发生了修改,抛出 ConcurrentModificationException 异常
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
// deleted entries are replaced by their successors
// 在 lastReturned 左右节点都存在的时候,实际在 deleteEntry 方法中,是将后继节点替换到 lastReturned 中
// 因此,next 需要指向 lastReturned
if (lastReturned.left != null && lastReturned.right != null)
next = lastReturned;
// 删除节点
deleteEntry(lastReturned);
// 记录新的修改次数
expectedModCount = modCount;
// 置空 lastReturned
lastReturned = null;
}
}
// 和 secessor 方法相对应(在 TreeMap 中定义的)
static <K,V> Entry<K,V> predecessor(Entry<K,V> t) {
// 如果 t 为空,则返回 null
if (t == null)
return null;
// 如果 t 的左子树非空,则取左子树的最大值
else if (t.left != null) {
Entry<K,V> p = t.left;
while (p.right != null)
p = p.right;
return p;
// 如果 t 的左子树为空
} else {
// 先获得 t 的父节点
Entry<K,V> p = t.parent;
// 不断向上遍历父节点,直到子节点 ch 不是父节点 p 的左子节点
Entry<K,V> ch = t;
while (p != null // 还有父节点
&& ch == p.left) { // 继续遍历的条件,必须是子节点 ch 是父节点 p 的左子节点
ch = p;
p = p.parent;
}
return p;
}
}
```
- key 的**正序**迭代器
```java
Iterator<K> keyIterator() {
return new KeyIterator(getFirstEntry()); // 获得的是首个元素
}
final class KeyIterator extends PrivateEntryIterator<K> {
KeyIterator(Entry<K,V> first) {
super(first);
}
// 实现 next 方法,实现正序
public K next() {
return nextEntry().key;
}
}
```
- key 的**倒序**迭代器
```java
Iterator<K> descendingKeyIterator() {
return new DescendingKeyIterator(getLastEntry()); // 获得的是尾部元素
}
final class DescendingKeyIterator extends PrivateEntryIterator<K> {
DescendingKeyIterator(Entry<K,V> first) {
super(first);
}
// 实现 next 方法,实现倒序
public K next() {
return prevEntry().key;
}
// 重写 remove 方法,因为在 deleteEntry 方法中,在 lastReturned 左右节点都存在的时候,是将后继节点替换到 lastReturned 中。
// 而这个逻辑,对于倒序遍历,没有影响,因为倒序时被删除节点的右子树已经被遍历完了。
public void remove() {
// 如果当前返回的节点不存在,则抛出 IllegalStateException 异常
if (lastReturned == null)
throw new IllegalStateException();
// 如果发生了修改,抛出 ConcurrentModificationException 异常
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
// 删除节点
deleteEntry(lastReturned);
// 置空 lastReturned
lastReturned = null;
// 记录新的修改次数
expectedModCount = modCount;
}
}
```
- value 的**正序**迭代器
```java
final class ValueIterator extends PrivateEntryIterator<V> {
ValueIterator(Entry<K,V> first) {
super(first);
}
// 实现 next 方法,实现正序
public V next() {
return nextEntry().value;
}
}
```
Entry 的**正序**迭代器
```java
final class EntryIterator extends PrivateEntryIterator<Map.Entry<K,V>> {
EntryIterator(Entry<K,V> first) {
super(first);
}
// 实现 next 方法,实现正序
public Map.Entry<K,V> next() {
return nextEntry();
}
}
```
## 转为集合
- keySet(**正序**的 key Set)
```java
/**
* 正序的 KeySet 缓存对象
*/
private transient KeySet<K> navigableKeySet;
public Set<K> keySet() {
return navigableKeySet();
}
public NavigableSet<K> navigableKeySet() {
KeySet<K> nks = navigableKeySet;
return (nks != null) ? nks : (navigableKeySet = new KeySet<>(this));
}
static final class KeySet<E> extends AbstractSet<E> implements NavigableSet<E> {
private final NavigableMap<E, ?> m;
KeySet(NavigableMap<E,?> map) { m = map; }
public Iterator<E> iterator() {
if (m instanceof TreeMap)
return ((TreeMap<E,?>)m).keyIterator();
else
return ((TreeMap.NavigableSubMap<E,?>)m).keyIterator();
}
public Iterator<E> descendingIterator() {
if (m instanceof TreeMap)
return ((TreeMap<E,?>)m).descendingKeyIterator();
else
return ((TreeMap.NavigableSubMap<E,?>)m).descendingKeyIterator();
}
public int size() { return m.size(); }
public boolean isEmpty() { return m.isEmpty(); }
public boolean contains(Object o) { return m.containsKey(o); }
public void clear() { m.clear(); }
public E lower(E e) { return m.lowerKey(e); }
public E floor(E e) { return m.floorKey(e); }
public E ceiling(E e) { return m.ceilingKey(e); }
public E higher(E e) { return m.higherKey(e); }
public E first() { return m.firstKey(); }
public E last() { return m.lastKey(); }
public Comparator<? super E> comparator() { return m.comparator(); }
public E pollFirst() {
Map.Entry<E,?> e = m.pollFirstEntry();
return (e == null) ? null : e.getKey();
}
public E pollLast() {
Map.Entry<E,?> e = m.pollLastEntry();
return (e == null) ? null : e.getKey();
}
public boolean remove(Object o) {
int oldSize = size();
m.remove(o);
return size() != oldSize;
}
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive,
E toElement, boolean toInclusive) {
return new KeySet<>(m.subMap(fromElement, fromInclusive,
toElement, toInclusive));
}
public NavigableSet<E> headSet(E toElement, boolean inclusive) {
return new KeySet<>(m.headMap(toElement, inclusive));
}
public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
return new KeySet<>(m.tailMap(fromElement, inclusive));
}
public SortedSet<E> subSet(E fromElement, E toElement) {
return subSet(fromElement, true, toElement, false);
}
public SortedSet<E> headSet(E toElement) {
return headSet(toElement, false);
}
public SortedSet<E> tailSet(E fromElement) {
return tailSet(fromElement, true);
}
public NavigableSet<E> descendingSet() {
return new KeySet<>(m.descendingMap());
}
public Spliterator<E> spliterator() {
return keySpliteratorFor(m);
}
}
```
- descendingKeySet(**倒序**的 key Set)
```java
/**
* 倒序的 NavigableMap 缓存对象
*/
private transient NavigableMap<K,V> descendingMap;
public NavigableSet<K> descendingKeySet() {
return descendingMap().navigableKeySet();
}
public NavigableMap<K, V> descendingMap() {
NavigableMap<K, V> km = descendingMap;
return (km != null) ? km :
// 后面介绍
(descendingMap = new DescendingSubMap<>(this,
true, null, true,
true, null, true));
}
```
- values
```java
public Collection<V> values() {
Collection<V> vs = values;
if (vs == null) {
vs = new Values();
values = vs; // values 缓存,来自 AbstractMap 的属性
}
return vs;
}
class Values extends AbstractCollection<V> {
public Iterator<V> iterator() {
return new ValueIterator(getFirstEntry());
}
public int size() { return TreeMap.this.size(); }
public boolean contains(Object o) { return TreeMap.this.containsValue(o); }
public boolean remove(Object o) {
for (Entry<K,V> e = getFirstEntry(); e != null; e = successor(e)) {
if (valEquals(e.getValue(), o)) {
deleteEntry(e);
return true;
}
}
return false;
}
public void clear() { TreeMap.this.clear(); }
public Spliterator<V> spliterator() {
return new ValueSpliterator<>(TreeMap.this, null, null, 0, -1, 0);
}
}
```
- entrySet
```java
/**
* Entry 缓存集合
*/
private transient EntrySet entrySet;
public Set<Map.Entry<K,V>> entrySet() {
EntrySet es = entrySet;
return (es != null) ? es : (entrySet = new EntrySet());
}
class EntrySet extends AbstractSet<Map.Entry<K,V>> {
public Iterator<Map.Entry<K,V>> iterator() {
return new EntryIterator(getFirstEntry());
}
public boolean contains(Object o) {
if (!(o instanceof Map.Entry))
return false;
Map.Entry<?,?> entry = (Map.Entry<?,?>) o;
Object value = entry.getValue();
Entry<K,V> p = getEntry(entry.getKey());
return p != null && valEquals(p.getValue(), value);
}
public boolean remove(Object o) {
if (!(o instanceof Map.Entry))
return false;
Map.Entry<?,?> entry = (Map.Entry<?,?>) o;
Object value = entry.getValue();
Entry<K,V> p = getEntry(entry.getKey());
if (p != null && valEquals(p.getValue(), value)) {
deleteEntry(p);
return true;
}
return false;
}
public int size() { return TreeMap.this.size(); }
public void clear() { TreeMap.this.clear(); }
public Spliterator<Map.Entry<K,V>> spliterator() {
return new EntrySpliterator<>(TreeMap.this, null, null, 0, -1, 0);
}
}
```
## 序列化
- 序列化
```java
@java.io.Serial
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException {
// Write out the Comparator and any hidden stuff
// 写入非静态属性、非 transient 属性
s.defaultWriteObject();
// Write out size (number of Mappings)
// 写入 key-value 键值对数量
s.writeInt(size);
// Write out keys and values (alternating)
// 写入具体的 key-value 键值对
for (Map.Entry<K, V> e : entrySet()) {
s.writeObject(e.getKey());
s.writeObject(e.getValue());
}
}
```
- 反序列化
```java
@java.io.Serial
private void readObject(final java.io.ObjectInputStream s)
throws java.io.IOException, ClassNotFoundException {
// Read in the Comparator and any hidden stuff
// 读取非静态属性、非 transient 属性
s.defaultReadObject();
// Read in size
// 读取 key-value 键值对数量 size
int size = s.readInt();
// 使用输入流,构建红黑树。
// 因为序列化时,已经是顺序的,所以输入流也是顺序的
buildFromSorted(size, null, s, null); // 注意,此时传入的是 s 参数,输入流
}
```